home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------------
- //
- // FishBars.wfm -- Fish Data Entry Form with custom Toolbars
- //
- // This MDI data entry form demonstrates how to attach
- // custom toolbars to a form.
- ////
- // Dependencies: FISH.DBF
- // WATER.JPG
- // CLIPBAR.PRG
- // EDITBAR.PRG
- // VCRBAR.PRG
- //
- // BDE Alias: VDBSAMPLES
- //
- // Visual Samples Group
- //
- // $Revision: 1.17 $
- //
- // Copyright (c) 1997, Borland International, Inc.
- // All rights reserved.
- //
- //---------------------------------------------------------------
- set talk off
- set ldCheck off
- ** END HEADER -- do not remove this line
- //
- // Generated on 11/01/97
- //
- parameter bModal
- local f
- f = new FISHBARSFORM()
- if (bModal)
- f.mdi = false // ensure not MDI
- f.readModal()
- else
- f.open()
- endif
-
- class FISHBARSFORM of FORM
- with (this)
- onClose = {; _app.speedbar := true}
- open = class::FORM_OPEN
- scaleFontSize = 8
- scaleFontBold = false
- height = 17.05
- left = 21.5
- top = 0.0526
- width = 59.8333
- text = "FishBars with custom toolbars"
- background = 'filename "water.jpg"'
- endwith
-
-
- this.SESSIONFISH = new SESSION()
- this.SESSIONFISH.parent = this
- with (this.SESSIONFISH)
- left = 0
- top = 0
- lockRetryInterval = 0
- endwith
-
-
- this.VDBSAMPLE1 = new DATABASE()
- this.VDBSAMPLE1.parent = this
- with (this.VDBSAMPLE1)
- left = 4
- top = 0
- databaseName = "VDBSAMPLE"
- session = form.SESSIONFISH
- active = true
- endwith
-
-
- this.FISH1 = new QUERY()
- this.FISH1.parent = this
- with (this.FISH1)
- left = 8
- top = 0
- database = form.vdbsample1
- sql = 'SELECT ID, Name, Species, Fish."Length CM", Description, Fish."OLE Graphic" from "fish.dbf" Fish'
- active = true
- endwith
-
- this.TITLETEXT = new TEXT(this)
- with (this.TITLETEXT)
- height = 2
- left = 1
- top = 0.25
- width = 57
- metric = 0
- colorNormal = "R/BtnFace"
- alignVertical = 1
- alignHorizontal = 1
- transparent = true
- text = "<H1>Fish of the World</H1>"
- endwith
-
- this.LABELSPECIES = new TEXT(this)
- with (this.LABELSPECIES)
- height = 1
- left = 3
- top = 2.5
- width = 12
- metric = 0
- colorNormal = "BtnText"
- alignVertical = 1
- transparent = true
- fontName = "MS Sans Serif"
- fontSize = 8
- fontBold = true
- text = "Fish ID:"
- endwith
-
-
- this.ENTRYID = new ENTRYFIELD(this)
- with (this.ENTRYID)
- enabled = false
- height = 1
- left = 16
- top = 2.5
- width = 9
- metric = 0
- dataLink = form.fish1.rowset.fields["ID"]
- picture = "9999999"
- colorHighLight = ""
- fontName = "MS Sans Serif"
- fontSize = 8
- validRequired = true
- borderStyle = 7
- endwith
-
-
- this.LABELCOMMONNAME = new TEXT(this)
- with (this.LABELCOMMONNAME)
- height = 1
- left = 3
- top = 3.5
- width = 12
- metric = 0
- colorNormal = "BtnText"
- alignVertical = 1
- transparent = true
- fontName = "MS Sans Serif"
- fontSize = 8
- fontBold = true
- text = "Name:"
- endwith
-
-
- this.ENTRYNAME = new ENTRYFIELD(this)
- with (this.ENTRYNAME)
- height = 1
- left = 16
- top = 3.5
- width = 30
- metric = 0
- dataLink = form.fish1.rowset.fields["Name"]
- colorHighLight = ""
- fontName = "MS Sans Serif"
- fontSize = 8
- validRequired = true
- borderStyle = 7
- endwith
-
-
- this.LABELCATEGORY = new TEXT(this)
- with (this.LABELCATEGORY)
- height = 1
- left = 3
- top = 4.5
- width = 12
- metric = 0
- colorNormal = "BtnText"
- alignVertical = 1
- transparent = true
- fontName = "MS Sans Serif"
- fontSize = 8
- fontBold = true
- text = "Category:"
- endwith
-
-
- this.ENTRYSPECIES = new ENTRYFIELD(this)
- with (this.ENTRYSPECIES)
- height = 1
- left = 16
- top = 4.5
- width = 30
- metric = 0
- dataLink = form.fish1.rowset.fields["Species"]
- colorHighLight = ""
- fontName = "MS Sans Serif"
- fontSize = 8
- validRequired = true
- borderStyle = 7
- endwith
-
-
- this.SPIN_CM = new SPINBOX(this)
- with (this.SPIN_CM)
- onChange = class::SPIN_CM_ONCHANGE
- height = 1
- left = 16
- top = 5.5
- width = 10
- metric = 0
- dataLink = form.fish1.rowset.fields["Length CM"]
- picture = "999.99"
- colorHighLight = ""
- rangeMax = 100
- rangeMin = 1
- fontName = "MS Sans Serif"
- fontSize = 8
- validRequired = true
- endwith
-
-
- this.LABELCM = new TEXT(this)
- with (this.LABELCM)
- height = 1
- left = 27
- top = 5.5
- width = 4
- metric = 0
- colorNormal = "BtnText"
- alignVertical = 1
- transparent = true
- fontName = "MS Sans Serif"
- fontSize = 8
- fontBold = true
- text = "CM"
- endwith
-
-
- this.LABELLENGTH = new TEXT(this)
- with (this.LABELLENGTH)
- height = 1
- left = 3
- top = 5.5
- width = 12
- metric = 0
- colorNormal = "BtnText"
- alignVertical = 1
- transparent = true
- fontName = "MS Sans Serif"
- fontSize = 8
- fontBold = true
- text = "Length:"
- endwith
-
-
- this.SPIN_INCHES = new SPINBOX(this)
- with (this.SPIN_INCHES)
- onChange = class::SPIN_INCHES_ONCHANGE
- height = 1
- left = 32
- top = 5.5
- width = 10
- metric = 0
- picture = "999.99"
- colorHighLight = ""
- rangeMax = 100
- rangeMin = 1
- fontName = "MS Sans Serif"
- fontSize = 8
- value = 1
- validRequired = true
- borderStyle = 7
- endwith
-
-
- this.LABELINCHES = new TEXT(this)
- with (this.LABELINCHES)
- height = 1
- left = 43
- top = 5.5
- width = 10
- metric = 0
- colorNormal = "BtnText"
- alignVertical = 1
- transparent = true
- fontName = "MS Sans Serif"
- fontSize = 8
- fontBold = true
- text = "Inches"
- endwith
-
-
- this.BOOKFISH = new NOTEBOOK(this)
- with (this.BOOKFISH)
- height = 9.5
- left = 2
- top = 7
- width = 56
- metric = 0
- colorNormal = "BtnFace"
- fontName = "MS Sans Serif"
- fontSize = 8
- dataSource = 'ARRAY {"OLE Graphic", "Description"}'
- borderStyle = 5
- endwith
-
-
- this.BOOKFISH.OLEGRAPHIC = new OLE(this.BOOKFISH)
- with (this.BOOKFISH.OLEGRAPHIC)
- alignment = 3
- height = 6.75
- left = 9.3333
- top = 1.5
- width = 35
- metric = 0
- dataLink = parent.parent.fish1.rowset.fields["OLE Graphic"]
- border = false
- endwith
-
-
- this.BOOKFISH.EDITORDESC = new EDITOR(this.BOOKFISH)
- with (this.BOOKFISH.EDITORDESC)
- height = 7.2727
- left = 1
- top = 1.5
- width = 52
- metric = 0
- fontName = "MS Sans Serif"
- fontSize = 8
- dataLink = parent.parent.fish1.rowset.fields["Description"]
- cuaTab = true
- pageno = 2
- popupEnable = false
- endwith
-
-
- this.rowset = this.fish1.rowset
-
- // {Linked Method} form.open
- function Form_Open
- _app.speedbar := false // turn off default toolbar
- this.SPIN_INCHES.value := (this.SPIN_CM.value / 2.54)
-
- with ( this.rowset )
- onAbandon := class::refreshInches
- onDelete := class::refreshInches
- onNavigate := class::refreshInches
- onSave := class::refreshInches
- canAppend := class::canAppendFish
- endwith
-
- // attach toolbars
- DO "clipbar.prg" WITH this
- DO "editbar.prg" WITH this
- DO "vcrbar.prg" WITH this
-
- return ( FISHBARSFORM::Open() )
-
- function canAppendFish
- with ( this.parent.parent.SPIN_INCHES )
- onChange := null
- value := null
- onChange := class::SPIN_INCHES_onChange
- endwith
- this.parent.parent.refresh()
- return true
-
- function refreshInches
- local thisForm
- thisForm = this.parent.parent
- with ( thisForm.SPIN_INCHES )
- onChange := null
- value := IIF( thisForm.SPIN_CM.datalink.parent.parent.endOfSet, ;
- null, ;
- ( thisForm.SPIN_CM.datalink.value / 2.54 ) )
- onChange := class::SPIN_INCHES_onChange
- endwith
- return ( thisForm.SPIN_INCHES.value )
-
- // {Linked Method} form.spin_cm.onChange
- function SPIN_CM_OnChange
- with ( this.form.SPIN_INCHES )
- onChange := null
- value := (this.value / 2.54)
- onChange := class::SPIN_INCHES_onChange
- endwith
- return ( this.value )
-
- // {Linked Method} form.spin_inches.onChange
- function SPIN_INCHES_OnChange
- with ( this.form.SPIN_CM )
- onChange := null
- datalink.value := (this.value * 2.54)
- onChange := class::SPIN_CM_onChange
- endwith
- this.form.rowset.refreshControls()
- return ( this.value )
- endclass
-